home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 8: LINUX Games
/
Linux Cubed Series 8 - LINUX Games.iso
/
games
/
x11
/
rpg
/
crossfir.92
/
crossfir
/
crossfire-0.92.5
/
include
/
newclient.h
< prev
next >
Wrap
Text File
|
1996-07-24
|
4KB
|
129 lines
/*
* static char *rcsid_newclient_h =
* "$Id: newclient.h,v 1.4 1995/11/13 08:23:29 master Exp $";
*/
/*
CrossFire, A Multiplayer game for X-windows
Copyright (C) 1994 Mark Wedel
Copyright (C) 1992 Frank Tore Johansen
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
The author can be reached via e-mail to master@rahul.net
*/
/* This file defines various flags that both the new client and
* newserver uses. These should never be changed, only expanded.
* Changing them will likely cause all old clients to not work properly.
*
* Name format is CS_(command)_(flag)
* CS = Client/Server.
* (command) is protocol command, ie ITEM
* (flag) is the flag name
*/
/* It is trivial to keep a link of copy of this file in the client
* or server area. But keeping one common file should make things
* more reliable, as both the client and server will definately be
* talking about the same values.
*/
/* Length flags for ITEM command */
#if ERIC_SERVER
#define ERICSERVER 1
#endif
#define CS_QUERY_YESNO 0x1 /* Yes/no question */
#define CS_QUERY_SINGLECHAR 0x2 /* Single character response expected */
#define CS_QUERY_HIDEINPUT 0x4 /* Hide input being entered */
#define CS_SAY_NORMAL 0x1 /* Normal say command */
#define CS_SAY_SHOUT 0x2 /* Text is shouted. */
#define CS_SAY_GSAY 0x4 /* Text is group say command */
/* These are multiplication values that should be used when changing
* floats to ints, and vice version. MULTI is integer representatin
* (float to int), MULTF is float, for going from int to float.
*/
#define FLOAT_MULTI 100000
#define FLOAT_MULTF 100000.0
/* ID's for the various stats that get sent across. */
#define CS_STAT_HP 1
#define CS_STAT_MAXHP 2
#define CS_STAT_SP 3
#define CS_STAT_MAXSP 4
#define CS_STAT_STR 5
#define CS_STAT_INT 6
#define CS_STAT_WIS 7
#define CS_STAT_DEX 8
#define CS_STAT_CON 9
#define CS_STAT_CHA 10
#define CS_STAT_EXP 11
#define CS_STAT_LEVEL 12
#define CS_STAT_WC 13
#define CS_STAT_AC 14
#define CS_STAT_DAM 15
#define CS_STAT_ARMOUR 16
#define CS_STAT_SPEED 17
#define CS_STAT_FOOD 18
#define CS_STAT_WEAP_SP 19
#define CS_STAT_RANGE 20
#define CS_STAT_TITLE 21
#define CS_STAT_POW 22
#define CS_STAT_GRACE 23
#define CS_STAT_MAXGRACE 24
/* The following are the color flags passed to new_draw_info.
*
* We also set up some control flags
*
* NDI = New Draw Info
*/
/* Color specifications - note these match the order in xutil.c */
/* Note 2: Black, the default color, is 0. Thus, it does not need to
* be implicitly specified.
*/
#define NDI_BLACK 0
#define NDI_WHITE 1
#define NDI_NAVY 2
#define NDI_RED 3
#define NDI_ORANGE 4
#define NDI_BLUE 5 /* Actually, it is Dodger Blue */
#define NDI_DK_ORANGE 6 /* DarkOrange2 */
#define NDI_GREEN 7 /* SeaGreen */
#define NDI_LT_GREEN 8 /* DarkSeaGreen, which is actually paler */
/* Than seagreen - also background color */
#define NDI_GREY 9
#define NDI_BROWN 10 /* Sienna */
#define NDI_GOLD 11
#define NDI_TAN 12 /* Khaki */
#define NDI_MAX_COLOR 12 /* Last value in */
#define NDI_COLOR_MASK 0xff /* Gives lots of room for expansion - we are */
/* using an int anyways, so we have the space */
/* to still do all the flags */
#define NDI_UNIQUE 0x100 /* Print this out immediately, don't buffer */
#define NDI_ALL 0x200 /* Inform all players of this message */